matplotlib style
from matplotlib
Gallery: Style sheets
https://matplotlib.org/gallery/index.html#style-sheets
style_sheets example code: plot_fivethirtyeight.py
https://matplotlib.org/examples/style_sheets/plot_fivethirtyeight.html
A Guide to Creating and Using Your Own Matplotlib Style
https://towardsdatascience.com/a-guide-to-creating-and-using-your-own-matplotlib-style-30de6c60bac0
Making Matplotlib Beautiful By Default - Towards Data Science
https://towardsdatascience.com/making-matplotlib-beautiful-by-default-d0d41e3534fd
View and Choose from nearly 30 builtin Matplotlib Styles
https://www.dunderdata.com/blog/view-all-available-matplotlib-styles
An Introduction to Making Scientific Publication Plots with Python | by Naveen Venkatesan | Towards Data Science
https://towardsdatascience.com/an-introduction-to-making-scientific-publication-plots-with-python-ea19dfa7f51e
Decorator
https://matplotlib.org/devdocs/users/explain/customizing.html#temporary-rc-settings
code:python
@mpl.rc_context({'lines.linewidth': 3, 'lines.linestyle': '-'})
def plotting_function():
plt.plot(data)
plotting_function()